home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxDocument.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  1.2 KB  |  43 lines

  1. //******************************************************************************
  2. //    File: ItsxDocument.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxDocument COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXDOCUMENT_H
  9. #define ITSXDOCUMENT_H
  10.  
  11.  
  12. #include "itsxcommon.h"
  13. #include "itsxobject.h"
  14.  
  15. // typedef a pointer to this interface
  16. typedef struct ItsxDocument* PITSXDOCUMENT;
  17.  
  18.  
  19. #undef INTERFACE
  20. #define INTERFACE ItsxDocument
  21.  
  22. DECLARE_INTERFACE_(ItsxDocument, IUnknown)
  23. {
  24.     // IUnknown members
  25.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  26.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  27.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  28.  
  29.     // ItsxDocument members
  30.     STDMETHOD(GetNextDocument) (THIS_ PITSXDOCUMENT*) PURE;
  31.     STDMETHOD(CreateTrueSpaceObject) (THIS_ CLSID, PITSXOBJECT*) PURE;
  32.     STDMETHOD(Draw) (THIS) PURE;
  33.     STDMETHOD(Render) (THIS) PURE;
  34.     STDMETHOD(DrawActive) (THIS) PURE;
  35.     STDMETHOD(RenderActive) (THIS) PURE;
  36. };
  37.  
  38. // define a GUID for this interface
  39. // {B887D601-2F64-11d1-A255-006097D15F58}
  40. DEFINE_GUID(IID_ItsxDocument, 0xb887d601, 0x2f64, 0x11d1, 0xa2, 0x55, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  41.  
  42.  
  43. #endif // ITSXDOCUMENT_H